From 33c9464dad0979b05323e4d508875ad47e1c425f Mon Sep 17 00:00:00 2001
From: Valentin Popov <valentin@popov.link>
Date: Thu, 12 Sep 2024 22:57:55 +0000
Subject: Refactor Analytics and Head components

---
 src/pages/blog/[...slug].astro | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'src/pages/blog/[...slug].astro')

diff --git a/src/pages/blog/[...slug].astro b/src/pages/blog/[...slug].astro
index 6754653..bcd5eed 100644
--- a/src/pages/blog/[...slug].astro
+++ b/src/pages/blog/[...slug].astro
@@ -3,6 +3,8 @@ import { type CollectionEntry, getCollection } from "astro:content";
 import Comments from "../../components/Comments.astro";
 import Layout from "../../layouts/BaseLayout.astro";
 
+type Props = CollectionEntry<"blog">;
+
 export async function getStaticPaths() {
 	const posts = await getCollection("blog");
 
@@ -12,8 +14,6 @@ export async function getStaticPaths() {
 	}));
 }
 
-type Props = CollectionEntry<"blog">;
-
 const post = Astro.props;
 const { Content, remarkPluginFrontmatter } = await post.render();
 ---
@@ -24,7 +24,7 @@ const { Content, remarkPluginFrontmatter } = await post.render();
 	}
 </style>
 
-<Layout title={post.data.title} description={post.data.description}>
+<Layout description={post.data.description} title={post.data.title}>
 	<article>
 		<section class="header">
 			<h1>{post.data.title}</h1>
-- 
cgit v1.2.3